home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 5 / Amiga Plus Sonderheft 1996 #5.iso / programme / imagedesk304 / imagedesk / instdata.lha / instdata / rexx / Default.CopyFiles.IDesk < prev    next >
Text File  |  1996-02-13  |  375b  |  25 lines

  1. /* If choosen for the default AREXX script, this script
  2.    will copy all clicked pictures into the directory
  3.    specified below.
  4. */
  5.  
  6. OPTIONS RESULTS
  7.  
  8. PARSE ARG iname itype ipos
  9.  
  10. DestDir = "ram:"
  11. /*         ^- This is the name of the destination directory.
  12.               Edit it for your requirements
  13. */
  14.  
  15.  
  16. ADDRESS COMMAND
  17.  
  18. 'copy 'iname DestDir
  19.  
  20. ADDRESS IDESK_REXXPORT
  21.  
  22. exit
  23.  
  24.  
  25.